projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6607ef4
)
filechooserwidget: Remvoe useless gtk_widget_show call
author
Timm Bäder
<mail@baedert.org>
Mon, 13 Mar 2017 11:45:38 +0000
(12:45 +0100)
committer
Timm Bäder
<mail@baedert.org>
Mon, 13 Mar 2017 11:45:38 +0000
(12:45 +0100)
And a comment above. Even if it is not correct, it doesn't matter since
we call gtk_widget_show on it again later in that function.
gtk/gtkfilechooserwidget.c
patch
|
blob
|
history
diff --git
a/gtk/gtkfilechooserwidget.c
b/gtk/gtkfilechooserwidget.c
index 292d50f53341c82458bb37328b6f4ee2b7794520..7627744a7893b4ca1ae0016d3ae03a966f1e8460 100644
(file)
--- a/
gtk/gtkfilechooserwidget.c
+++ b/
gtk/gtkfilechooserwidget.c
@@
-2923,11
+2923,7
@@
set_extra_widget (GtkFileChooserWidget *impl,
GtkFileChooserWidgetPrivate *priv = impl->priv;
if (extra_widget)
- {
- g_object_ref (extra_widget);
- /* FIXME: is this right ? */
- gtk_widget_show (extra_widget);
- }
+ g_object_ref (extra_widget);
if (priv->extra_widget)
{